home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia 1995 April / Informatica Multimedia CD - Epimundo.iso / DOS / ARCHIVE / LHREAD.ZIP / LHREAD.DOC < prev    next >
Encoding:
Text File  |  1990-10-29  |  3.6 KB  |  101 lines

  1. NAME
  2.     lhread - Read and list LHARC archives in various ways
  3.  
  4. SYNOPSIS
  5.    lhread [-xvcgh] arcname [filename ...]
  6.  
  7.            X => extract files
  8.  (default) V => list archive contents
  9.            M => narrow list of contents
  10.            P => display text file on standard output
  11.            G => show graphic as picture (BLOAD or PCX)
  12.            H => show and hold picture
  13.  
  14. DESCRIPTION
  15.     LHREAD can be used to list the contents of an LHARC archive, extract
  16.     files to disk, display text files on 'standard output', and to
  17.     display graphic pictures in BLOAD or PCX format.
  18.  
  19.     'arcname' is the name of the archive files to be used.  This is the
  20.     only required argument.  MS-DOS wildcard characters '*' and '?' are
  21.     allowed.  If no extension is given, .LZH is assumed.
  22.  
  23.     'filename' arguments are files to list/test/extract from the archive.
  24.     If no 'filename's are given, all files will be selected.  MS-DOS
  25.     wildcard characters '*' and '?' are allowed.  LHREAD ignores any
  26.     pathnames stored in the archive when selecting files.
  27.  
  28.     LIST COMMAND
  29.         The list command generates a listing of the selected
  30.         files in the archive.
  31.  
  32.                 > lhread -v test
  33.  
  34.                 Listing archive TEST.LZH
  35.                   --rw-    1161 /     715   5 Apr 89  09:07:38   README
  36.                   --rw-    8435 /    8435  12 Apr 89  19:55:38   TEST.DAT
  37.  
  38.                 > lhread -m test
  39.                 README
  40.         TEST.DAT
  41.  
  42.     EXTRACT COMMAND
  43.         This command extracts the selected files from the archive.  If one of
  44.         the files exists, the user will be prompted whether or not he wants to
  45.         overwrite the file.  LHX ignores the path and attribute information in
  46.         the archive; the files will be created in the current working directory
  47.         with standard attributes.
  48.  
  49.         >lhread -x test
  50.  
  51.     DISPLAY COMMAND
  52.         This command extracts the selected files from the archive to
  53.     standard output. Standard output appears on the screen if
  54.     not redirected to a file, a printer, some other device or a
  55.     pipe.
  56.  
  57.         >lhread -p docs main.doc
  58.  
  59.         >lhread -p docs main.doc > PRN:
  60.  
  61.         >lhread -p docs names.doc | sort > sorted names
  62.  
  63.     PICTURE COMMAND
  64.         This command extracts the selected graphic files from the archive,
  65.         displaying them on the screen.  Supported formats are certain
  66.     BLOAD formats and many .PCX formats.
  67.  
  68.     The G command simply displays a screen and awaits a keypress
  69.     before continuing.
  70.  
  71.         >lhread -g pictures tiger.pcx
  72.  
  73.     The H command displays the screen and exits the program with
  74.     the screen still on display. This is for use when LHREAD is
  75.     called from other programs.
  76.  
  77.  
  78. ACKNOWLEDGEMENTS
  79.     LHREAD is based on LHX, a tool for checking LHARC archives and
  80.     for extracting files from damaged archives.
  81.  
  82.     This program was written using code from the Usenet distribution
  83.     of LZHUF.C written by Haruyasu Yoshizaki, Haruhiko Okumura, and
  84.     Kenji Rikitake.  This is copyrighted code with permission granted
  85.     for non-commercial use.
  86.  
  87.     The LHX program was written by Mark Armbrust, who placed his part
  88.     of the code in the public domain.
  89.  
  90.     Addition of display to standard output and display of graphic
  91.     images were done by Nick Taylor, and is copyright Nick Taylor,
  92.     and permission is granted to distribute and use the system for
  93.     non-commercial use.
  94.  
  95.     Source for the LZHUF.C and LHX parts are available.
  96.  
  97.  
  98. Distributed by Public (software) Library.
  99. For a catalog of more than 2000 disks of pd/shareware, call 1-800-2424-PSL
  100. or write Public (software) Library, P.O.Box 35705, Houston, TX 77235-5705.
  101.